home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 5 / BBS in a Box -Volume V (BBS in a Box) (April 1992).iso / Files / Prog / T / TC Prog Guide.cpt / picture ƒ / ring.h < prev    next >
Encoding:
C/C++ Source or Header  |  1990-11-09  |  434 b   |  22 lines  |  [TEXT/KAHL]

  1. /*
  2. *    FILE:        ring.h
  3. *    AUTHOR:        R. Gonzalez
  4. *    CREATED:    October 8, 1990
  5. *
  6. *    Defines ring of cubes for picture application.
  7. */
  8.  
  9. # ifndef    ring_h
  10. # define    ring_h
  11.  
  12. # include    "segment.h"
  13.  
  14. /******************************************************************
  15. *   ring.  Nested segment consisting of several cubes.
  16. ******************************************************************/
  17. struct    Ring:Nested_Segment
  18. {
  19.     boolean            init(void);
  20. };
  21.  
  22. # endif